Find String Reversed
Command Prototype
iRet = InStrRev(sText,sSubText,iPos,bCompare)
Command Description
Find the specified characters in the string in reversed order; return the position of the found characters if found, and return 0 if not found
Parameter Description
- Required Parameter
- sText--The string to operate
- sSubText--The substring to find
- iPos--The index of position to start finding
- bCompare--Whether to be case sensitive when strings are compared
- return
- iRet--The variable used to save the output of the function call